What is the output of the following program? #include #include int main () { std::vector intValues {3}; for (const auto& vv: intValues) { std::cout

🎲 Try a Random Question  |  Total Questions in Quiz: 183  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C++ Programming Fundamentals Test 3 — practice the complete quiz, review flashcards, or try a random question.


What is the output of the following program? #include <vector> #include <iostream> int main () { std::vector<int> intValues {3}; for (const auto& vv: intValues) { std::cout << vv; } }






ADVERTISEMENT